for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
export default {
data: function () {
return {
padding: 0,
}
},
props: {
height: {
type: Number
computed: {
top () {
return (this.height + this.padding) + 'px';
};